From: Jason Rumney Date: Mon, 3 May 2004 13:51:23 +0000 (+0000) Subject: (info-gmake, info-nmake): New targets. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~22739 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=3bcda55b803060405500b11cc9fcb04135c5d7d3;p=emacs.git (info-gmake, info-nmake): New targets. (info): Use them. --- diff --git a/nt/makefile.w32-in b/nt/makefile.w32-in index 52455a0a2d8..4f619b3f2e3 100644 --- a/nt/makefile.w32-in +++ b/nt/makefile.w32-in @@ -217,11 +217,20 @@ force-info: # Note that man/makefile knows how to # put the info files in $(infodir), # so we can do ok running make in the build dir. -info: force-info - (cd ..\man && $(MAKE) $(MFLAGS) info) - (cd ..\lispref && $(MAKE) $(MFLAGS) info) - (cd ..\lispintro && $(MAKE) $(MFLAGS) info) +info: force-info info-$(MAKETYPE) +info-nmake: + cd ..\man + $(MAKE) $(MFLAGS) info + cd ..\lispref + $(MAKE) $(MFLAGS) info + cd ..\lispintro + $(MAKE) $(MFLAGS) info + +info-gmake: + $(MAKE) $(MFLAGS) -C ../man info + $(MAKE) $(MFLAGS) -C ../lispref info + $(MAKE) $(MFLAGS) -C ../lispintro info # # Maintenance #